.profile-card {
    background-color: #f5f5f5;
    border-radius: 15px;
    max-width: 95vw;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    height: 100%;
    justify-content: space-evenly;
  }
  
  .profile-image {
      display: flex;
      justify-content: center;
      width: 100%;
      max-width: 80%;
  }
  
  .profile-image img {
    width: 85%;
    height: 30%;
    border-radius: 15px;
    object-fit: cover;
  }
  
  .profile-details {
      text-align: center;
      margin-top: 15px;
      display: flex;
      flex-direction: column;
      width: 100%;
  }
  
  .profile-name {
    font-size: 28px;
    color: #333;
  }
  
  .profile-profession {
    font-size: 18px;
    color: #666;
  }
  
  .stars span {
    color: gold;
    font-size: 22px;
  }
  
  .profile-description {
    font-size: 16px;
    color: #777;
    margin: 10px 0;
  }
  
  .contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
  }
  
  .contact-buttons .btn {
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      color: white;
      font-weight: bold;
      width: 100%;
      margin: 0 auto;
  }
  
  .whatsapp {
    background-color: #25d366;
  }
  
  .facebook {
    background-color: #4267b2;
  }
  
  .instagram {
    background-color: #39bbef;
  }
  
  .email {
    background-color: #f39c12;
  }